home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_2
/
ispell-3.3ljr
/
ispell
/
minrexx.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-05
|
558b
|
23 lines
/*
* Includes for minrexx.c; please refer to that file for
* further documentation.
*/
#include <rexx/rxslib.h>
/*
* Maximum messages that can be pending, and the return codes
* for two bad situations.
*/
#define MAXRXOUTSTANDING (300)
#define RXERRORIMGONE (100)
#define RXERRORNOCMD (30)
/*
* This is the association list you build up (statically or
* dynamically) that should be terminated with an entry with
* NULL for the name . . .
*/
struct rexxCommandList
{
char *name ;
void (*userdata)(struct RexxMsg *, char *) ;
};